home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / GameKit / Apps / HighScoreServer / Makefile < prev    next >
Makefile  |  1995-06-12  |  433b  |  21 lines

  1. #  to make the high score server
  2.  
  3. # add/remove -DLOGGING_ENABLED to suit your taste.
  4. CFLAGS = -arch m68k -arch i386 -arch hppa -arch sparc -Wall -g -ObjC -DLOGGING_ENABLED
  5.  
  6. all: serverd high
  7.  
  8. serverd: ServerMain.o
  9.     cc -o serverd ServerMain.o -lgamekit -ldaymisckit -lNeXT_s -lsys_s
  10.     strip -A -n serverd
  11.  
  12. high: Runner.c
  13.     cc $(CFLAGS) -o high Runner.c
  14.     strip high
  15.  
  16. ServerMain.o: ServerMain.m
  17.  
  18. clean:
  19.     rm -rf serverd high ServerMain.o
  20.  
  21.